Merge "Remove self-explaining "section heading" comments from classes"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Sat, 30 Dec 2017 21:25:14 +0000 (21:25 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Sat, 30 Dec 2017 21:25:15 +0000 (21:25 +0000)
1  2 
includes/context/RequestContext.php

@@@ -81,13 -81,17 +81,13 @@@ class RequestContext implements IContex
        private static $instance = null;
  
        /**
 -       * Set the Config object
 -       *
 -       * @param Config $c
 +       * @param Config $config
         */
 -      public function setConfig( Config $c ) {
 -              $this->config = $c;
 +      public function setConfig( Config $config ) {
 +              $this->config = $config;
        }
  
        /**
 -       * Get the Config object
 -       *
         * @return Config
         */
        public function getConfig() {
                return $this->skin;
        }
  
-       /** Helpful methods **/
        /**
         * Get a Message object with context set
         * Parameters are the same as wfMessage()
                return call_user_func_array( 'wfMessage', $args )->setContext( $this );
        }
  
-       /** Static methods **/
        /**
         * Get the RequestContext object associated with the main request
         *